
/* navigation bar CSS rules here */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body, html {
  height: 100%;
  overflow-x: hidden;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 60px;
  background: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: white;
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 40px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover,
.nav-links .active {
  color:#C9A227;
}

.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 20px;
    background: rgba(0, 0, 0, 0.9);
    padding: 20px;
    border-radius: 8px;
  }

  .nav-links.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    padding-left: 30px;
  }

  .hero-content h1 {
    font-size: 38px;
  }
}
/* ===== DROPDOWN MENU ===== */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(0,0,0,0.95);
  display: none;
  min-width: 200px;
  border-radius: 6px;
  overflow: hidden;
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 15px;
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.dropdown-menu li a:hover {
  background: #C9A227;
  color: black;
}

/* SHOW ON HOVER */
.dropdown:hover .dropdown-menu {
  display: block;
}

/* ===== FOOTER ===== */
.footer {
  background: #111;
  color: #fff;
  padding: 60px 80px 20px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer h2,
.footer h3 {
  margin-bottom: 15px;
  color: #C9A227;
}

.footer p {
  line-height: 1.6;
  max-width: 300px;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links a {
  text-decoration: none;
  color: #ccc;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #C9A227;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #222;
  border-radius: 50%;
  color: white;
  font-size: 18px;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #C9A227;
  color: black;
  transform: translateY(-4px);
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #333;
  font-size: 14px;
  color: #aaa;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
  }
}
body{
    margin:0;
    font-family:'Poppins', sans-serif;
    color:#222;
    overflow-x:hidden;
}

/* ================= HERO / ABOUT ================= */
.services-hero{
    height: 40vh; /* slightly taller for better look */
    background: url("../images/home.png") center/cover no-repeat; /* use your image */
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Dark overlay for readability */
.overlay{
    background: rgba(0,0,0,0.4); /* semi-transparent black */
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    padding: 20px;
}

/* Hero Title */
.overlay h1{
  font-family: 'Cormorant Garamond', serif;
    font-size: 45px;
    margin-bottom: 15px;
    letter-spacing: 2px;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6); /* makes text readable on image */
    animation: fadeDown 1s ease;
 }

/* Hero Subtitle */
.overlay p{
       margin-top:15px;
    font-size:18px;
    letter-spacing: 1px;
 color:#d4af37;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.6);
    animation: fadeUp 1.2s ease;
}
/* Animations */
@keyframes fadeDown {
    0% { opacity: 0; transform: translateY(-30px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media(max-width:900px){
    .overlay h1{
        font-size: 40px;
    }
    .overlay p{
        font-size: 16px;
    }
}/* ===== SERVICES SECTION ===== */
    body {
      margin: 0;
      font-family: 'Roboto', sans-serif;
      background-color: #f9f9f9;
      color: #333;
    }

    .services-section {
      text-align: center;
      padding: 60px 20px;
    }

    .services-section h2 {
      font-size: 2.2rem;
      margin-bottom: 10px;
      font-weight: 550;
    }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 per row */
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

    .service-card {
      background: #fff;
      padding: 30px 20px;
      border-radius: 12px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.05);
      transition: transform 0.3s, box-shadow 0.3s;
      text-align: center;
    }

    .service-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 25px  #d4af37;
    }

    .service-icon {
      font-size: 40px;
      color: #d4af37;
      margin-bottom: 20px;
    }

    .service-card h3 {
      font-size: 1.3rem;
      margin-bottom: 10px;
      font-weight: 700;
    }

    .service-card p {
      font-size: 0.95rem;
      color: #666;
      margin-bottom: 15px;
    }

    .service-card a {
      display: inline-block;
      text-decoration: none;
      color: #d4af37;
      font-weight: 600;
      border: 1px solid #d4af37;
      padding: 8px 15px;
      border-radius: 6px;
      transition: background 0.3s, color 0.3s;
    }
@media(max-width: 992px){
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 576px){
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile responsive */
@media (max-width: 768px) {
  .services-section {
    padding: 40px 15px;
  }

  .services-section h2 {
    font-size: 1.7rem;
  }

  .service-card {
    padding: 25px 15px;
  }

  .service-card h3 {
    font-size: 1.1rem;
  }

  .service-card p {
    font-size: 0.9rem;
  }

  .service-icon {
    padding: 15px;
    font-size: 30px;
    transform: translateY(-20px);
  }
}

@media (max-width: 480px) {
  .services-section h2 {
    font-size: 1.5rem;
  }

  .service-card {
    padding: 20px 10px;
  }

  .service-card h3 {
    font-size: 1rem;
  }

  .service-card p {
    font-size: 0.85rem;
  }

  .service-icon {
    padding: 12px;
    font-size: 26px;
    transform: translateY(-15px);
  }
}

/* Optional: Ensure grid stacks properly on small screens */
.services-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.back-container{
  padding: 20px 8%;
}

.back-btn{
  background: #C9A227;
  color: #000;
  border: none;
  padding: 8px 18px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: 0.3s;
}

.back-btn:hover{
  background: #000;
  color: #C9A227;
}
